projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c483d05
)
Don't make assumptions about mkdir. (Bug#22822)
author
Aaron S. Hawley
<aaron.s.hawley@gmail.com>
Sun, 28 Feb 2016 03:01:24 +0000
(19:01 -0800)
committer
Glenn Morris
<rgm@gnu.org>
Sun, 28 Feb 2016 03:01:24 +0000
(19:01 -0800)
* test/Makefile.in (MKDIR_P): New, set by configure.
(%.log): Use MKDIR_P.
test/Makefile.in
patch
|
blob
|
history
diff --git
a/test/Makefile.in
b/test/Makefile.in
index b5954dfc519fffb17577eb1bc0c69f72ca825899..a5755fd225937e8b3ddd0d371dc9e541b170e236 100644
(file)
--- a/
test/Makefile.in
+++ b/
test/Makefile.in
@@
-33,6
+33,8
@@
SHELL = @SHELL@
srcdir = @srcdir@
VPATH = $(srcdir)
+MKDIR_P = @MKDIR_P@
+
SEPCHAR = @SEPCHAR@
# We never change directory before running Emacs, so a relative file
@@
-110,7
+112,7
@@
endif
fi; \
echo Testing $$loadfile; \
stat=OK ; \
-
mkdir --parents
$(dir $@) ; \
+
${MKDIR_P}
$(dir $@) ; \
$(emacs) -l ert -l $$loadfile \
--eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG}